projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13e60f6
)
(Fplist_get): Don't QUIT is interrupt_input_blocked.
author
Gerd Moellmann
<gerd@gnu.org>
Wed, 11 Apr 2001 12:57:50 +0000
(12:57 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Wed, 11 Apr 2001 12:57:50 +0000
(12:57 +0000)
src/fns.c
patch
|
blob
|
history
diff --git
a/src/fns.c
b/src/fns.c
index ceda1cfbf41d515418f50e1b7e5d6fe1394ff22d..c0b8190433e27c912d20011bfb0559835b4be963 100644
(file)
--- a/
src/fns.c
+++ b/
src/fns.c
@@
-1872,7
+1872,11
@@
one of the properties on the list.")
{
if (EQ (prop, XCAR (tail)))
return XCAR (XCDR (tail));
- QUIT;
+
+ /* This function can be called asynchronously
+ (setup_coding_system). Don't QUIT in that case. */
+ if (!interrupt_input_blocked)
+ QUIT;
}
if (!NILP (tail))
@@
-1915,6
+1919,7
@@
The PLIST is modified by side effects.")
Fsetcar (XCDR (tail), val);
return plist;
}
+
prev = tail;
QUIT;
}